Problem Note 44506: Extraneous borders might appear in your ODS output when you use certain styles with ODS TAGSETS.RTF
Extraneous borders might appear in your ODS output when you use certain styles with ODS TAGSETS.RTF. Horizontal lines could appear in the output, or existing rules or borders might be displayed incorrectly.
The sample code on the Full Code tab generates an RTF file that illustrates the problem. An example of the RTF file containing the extraneous borders can be opened from the Results tab. You can see the first appearance of the extraneous horizontal border on page 3 of the RTF file.
To circumvent the problem, include the UNIFORM option in the ODS TAGSETS.RTF statement. Here is an example:
ods tagsets.rtf file="body.rtf" style=default uniform;
If the problematic borders exist due to the application of the style attributes FRAME=HSIDES RULES=GROUPS, the circumvention does not work and the partial border lines still appear.
Operating System and Release Information
SAS System | Base SAS | Windows 7 Professional 32 bit | 9.3 TS1M0 | |
Windows 7 Professional x64 | 9.3 TS1M0 | |
Windows 7 Enterprise 32 bit | 9.3 TS1M0 | |
Windows 7 Ultimate 32 bit | 9.3 TS1M0 | |
Windows 7 Enterprise x64 | 9.3 TS1M0 | |
Windows 7 Ultimate x64 | 9.3 TS1M0 | |
Windows 7 Home Premium 32 bit | 9.3 TS1M0 | |
Windows Vista | 9.3 TS1M0 | 9.4 TS1M0 |
Windows 7 Home Premium x64 | 9.3 TS1M0 | |
Windows Vista for x64 | 9.3 TS1M0 | 9.4 TS1M0 |
64-bit Enabled AIX | 9.3 TS1M0 | 9.4 TS1M0 |
64-bit Enabled HP-UX | 9.3 TS1M0 | 9.4 TS1M0 |
64-bit Enabled Solaris | 9.3 TS1M0 | 9.4 TS1M0 |
HP-UX IPF | 9.3 TS1M0 | 9.4 TS1M0 |
Linux | 9.3 TS1M0 | 9.4 TS1M0 |
Linux for x64 | 9.3 TS1M0 | 9.4 TS1M0 |
Solaris for x64 | 9.3 TS1M0 | 9.4 TS1M0 |
Microsoft Windows XP Professional | 9.3 TS1M0 | 9.4 TS1M0 |
Microsoft Windows Server 2003 for x64 | 9.3 TS1M0 | 9.4 TS1M0 |
Microsoft® Windows® for x64 | 9.3 TS1M0 | 9.4 TS1M0 |
Microsoft Windows Server 2008 | 9.3 TS1M0 | 9.4 TS1M0 |
Microsoft Windows Server 2003 Datacenter Edition | 9.3 TS1M0 | 9.4 TS1M0 |
Microsoft Windows Server 2008 for x64 | 9.3 TS1M0 | 9.4 TS1M0 |
Microsoft Windows Server 2003 Enterprise Edition | 9.3 TS1M0 | 9.4 TS1M0 |
Microsoft Windows Server 2003 Standard Edition | 9.3 TS1M0 | 9.4 TS1M0 |
Z64 | 9.3 TS1M0 | 9.4 TS1M0 |
z/OS | 9.3 TS1M0 | 9.4 TS1M0 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Extraneous borders might appear in your ODS output when you are using certain styles with ODS TAGSETS.RTF. Horizontal lines could appear in the output, or existing rules or borders might be displayed incorrectly. To circumvent the problem, include the UNIFORM option in the ODS TAGSETS.RTF statement.
The sample code below generates an RTF file that illustrates the problem. The RTF file can be opened from the Results tab.
ods html close;
ods tagsets.rtf file="example.rtf" style=default;
proc report data=sashelp.cars nowindows split='@';
where make="Chevrolet" or make="Ford" or make="Toyota" or make="Dodge";
column make model type origin;
define make / group "Make" width=15 left;
define model / group "Model" width=42 left;
define type / group "Type" width=10 left;
define origin / group "Origin" width=7 left;
title "Horizontal line appearing unexpectedly several places within the table";
run;
ods tagsets.rtf close;
ods html;
If you are using ODS TAGSETS.RTF in SAS® 9.3 to create output, horizontal lines could appear in the output, or existing rules or borders might be displayed incorrectly.
Type: | Problem Note |
Priority: | high |
Date Modified: | 2011-10-19 11:41:19 |
Date Created: | 2011-10-03 17:14:59 |